home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr05 / att33all.zip / CAPTION.FRM < prev    next >
Text File  |  1994-10-25  |  1KB  |  50 lines

  1. VERSION 2.00
  2. Begin Form Form1 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   0  'None
  5.    Caption         =   "Form1"
  6.    ClientHeight    =   285
  7.    ClientLeft      =   945
  8.    ClientTop       =   1545
  9.    ClientWidth     =   900
  10.    ControlBox      =   0   'False
  11.    Height          =   720
  12.    Left            =   870
  13.    LinkTopic       =   "Form1"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   285
  17.    ScaleWidth      =   900
  18.    Top             =   1185
  19.    Width           =   1050
  20.    Begin Label Label1 
  21.       Alignment       =   2  'Center
  22.       AutoSize        =   -1  'True
  23.       BackColor       =   &H00FFFFFF&
  24.       BackStyle       =   0  'Transparent
  25.       Caption         =   "Message"
  26.       FontBold        =   0   'False
  27.       FontItalic      =   0   'False
  28.       FontName        =   "MS Sans Serif"
  29.       FontSize        =   8.25
  30.       FontStrikethru  =   0   'False
  31.       FontUnderline   =   0   'False
  32.       Height          =   195
  33.       Left            =   45
  34.       TabIndex        =   0
  35.       Top             =   30
  36.       Width           =   675
  37.    End
  38. End
  39. Option Explicit
  40.  
  41. Sub Form_Load ()
  42.       Label1.ForeColor = AllTheTime.ForeColor
  43.       DrawShadow Me
  44. End Sub
  45.  
  46. Sub Form_Paint ()
  47.    DrawShadow Me
  48. End Sub
  49.  
  50.